home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / dev / lang / Python16_Src.lha / Python16_Source / Include / intrcheck.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-08-03  |  317 b   |  15 lines

  1. #ifndef Py_INTRCHECK_H
  2. #define Py_INTRCHECK_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6.  
  7. extern DL_IMPORT(int) PyOS_InterruptOccurred Py_PROTO((void));
  8. extern DL_IMPORT(void) PyOS_InitInterrupts Py_PROTO((void));
  9. DL_IMPORT(void) PyOS_AfterFork Py_PROTO((void));
  10.  
  11. #ifdef __cplusplus
  12. }
  13. #endif
  14. #endif /* !Py_INTRCHECK_H */
  15.